how to concert a list into strinf splitted by coma c#

54

how to concert a list into strinf splitted by coma c# -

string commaSeperatedNumbers = String.Join(",", new List<int> { 1, 2, 3, 4, 5 });

Comments

Submit
0 Comments